home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 051-075 / disk_051 / compress / makefile < prev    next >
Makefile  |  1992-05-06  |  832b  |  33 lines

  1. CFLAGS =    -damiga -dlattice -dBITS=$(BITS) 
  2. OBJ =        compress.o stat.o
  3. CC =        lc
  4.  
  5. # The following define determines the amount of dynamic memory
  6. # compress will use for it's tables.  The following is a rough
  7. # guideline of the amount of free contiguous space needed to run
  8. # with various settings of BITS.
  9. #
  10. #    BITS        Free contiguous memory required
  11. #    -----        -------------------------------
  12. #
  13. #    16        433000
  14. #    15        230000
  15. #    14        128000
  16. #    13         73000
  17. #
  18. # In particular, note that the default of 16 will probably not run
  19. # on Amigas without extended (more than 512K) memory.  Also note that
  20. # this can be adjusted without any Makefile or source changes by
  21. # specifying BITS on the command line to "make".  I.E.  "make BITS=13".
  22.  
  23. BITS =        16
  24.  
  25. .c.o:
  26.         $(CC) $(CFLAGS) -o$@ $*.c
  27.  
  28. all :        compress
  29.  
  30. compress :    compress.o stat.o
  31.         blink with link.cmd
  32.  
  33.